
function arr = init (n)
  % init Bloom Filter
  % n = |B|
  
  arr = zeros(1, n,'uint8');
end